All Questions
5 questions
3votes
1answer
399views
Event sourcing javascript implementation
An event source built around an observer design pattern implementation… ...
1vote
1answer
70views
Buffered source of HTMLElement(s)
Temporary storing the element(s) returned by document.querySelector and document.querySelectorAll methods could improve ...
5votes
1answer
1kviews
Caesar Cipher [The Odin Project-Javascript Exercise]
Very new to coding, so please don't bully me. Implement the legendary caesar cipher: In cryptography, a Caesar cipher, also known as Caesar's cipher, the shift cipher, Caesar's code or Caesar shift, ...
3votes
1answer
1kviews
JS calculator module using functional programming
All of the code is self-explanatory and pretty much complete. What the code does: Calculates using onscreen numerics and operators Validates any erroneous operations, such as 4 ** 8 or *9 Good ...
0votes
2answers
377views
Write an anonymous function validating email address
Problem statement Write an anonymous function which take email address as parameter and returns true/false after validating the input parameter. Objective This assignment will help you ...